home *** CD-ROM | disk | FTP | other *** search
/ Cre@te Online 2000 December / Cre@teOnline CD05.iso / MacSoft / XML Instance.sea / XML Instance / Required / extplugin.jar / com / extensibility / plugin / api / ResLocationContext.class (.txt) < prev    next >
Encoding:
Java Class File  |  2000-07-31  |  1.1 KB  |  30 lines

  1. package com.extensibility.plugin.api;
  2.  
  3. import java.io.File;
  4. import javax.swing.Icon;
  5. import javax.swing.JButton;
  6.  
  7. public interface ResLocationContext extends PluginContext {
  8.    void okSave(URIScheme var1);
  9.  
  10.    void okOpen(URIScheme var1);
  11.  
  12.    void cancel();
  13.  
  14.    void setOKEnabled(boolean var1);
  15.  
  16.    File askFile(String var1, String[] var2);
  17.  
  18.    URIScheme getBaseLocation();
  19.  
  20.    URIScheme createResLocation(URIScheme var1, String var2);
  21.  
  22.    URIScheme createResLocation(File var1);
  23.  
  24.    LoginPanel getLoginPanel(String[] var1, String var2, String var3, String var4);
  25.  
  26.    TreeBrowseContext createBrowsing(TreeBrowseModel var1, TreeBrowseListener var2);
  27.  
  28.    JButton createQuietButton(String var1, Icon var2);
  29. }
  30.